home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ForCLI / msdos_30.lha / MSDOS_30 / DOS6 / DELTREE < prev    next >
AmigaDOS Script File  |  1994-10-24  |  263b  |  17 lines

  1. .key dir
  2. .bra {
  3. .ket }
  4.  
  5. If Not Exists {dir}
  6.     Echo "Object not found"
  7.     Quit >NIL: 205
  8. EndIf
  9. Echo "This will erase everything in the dir: {dir}"
  10. Ask "Are you sure (Y/N)? "
  11. If WARN
  12.     Delete {dir} all quiet
  13.     If Exists {dir}.info
  14.         Delete {dir}.info quiet
  15.     EndIf
  16. EndIf
  17.